home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / graphics / pbm / readme.txt < prev   
Text File  |  1994-08-27  |  2KB  |  53 lines

  1.     This is a quick port of the Portable Bit Map + package to the 
  2. Atari ST. Because of the original size of the full package it has been 
  3. trimmed and clipped down to the smallest fully functional set of programs. 
  4. It is quit possible, and most likely, that each user will trim it down at 
  5. least by a factor of 3 for his/her particular implementation. 
  6.  
  7.     Most of the package has been tested and found to be fully 
  8. functional on a 4 meg 1040. I ran all the programs successfully using a
  9. Bash shell window under Gemini V1.1 (eagerly awaiting V1.2). With all 
  10. my accessories installed and a large Bash, I have about 3 meg free. The only
  11. that ran out of memory was PNMROTATE, but the most common rotation is by 90
  12. degrees and this can be done in nearly no memory by using PNMFLIP -r90. 
  13.  
  14.     I did not include any Laser Printer support do to lack of space, 
  15. but if people need something from the PBM+ package that I left out 
  16. (there is a lot) then either compile it up from the sources or drop me a 
  17. note. By the way this way compiled on a Sparc 1 using Jwahar's GCC 1.39!
  18. Howevere there seemed to be a bit of trouble handling I/O redirection with
  19. binary files using gnu.olb PL58 , so I used Edgar Roeder's RTL, which works 
  20. flawlessly, but gives larger executables.  
  21.  
  22.     An example of creating a image suitable for printing on an epson 
  23. compatible dot matrix printer from say a gif file would be as follows. 
  24. 1.     giftoppm cat.gif   >cat.ppm
  25. 2.     ppmtopgm cat.ppm   >cat.pgm
  26. 3.     pgmtopbm cat.pgm   >cat.pbm
  27. 4.     pbmtoepson cat.pbm >cat.eps
  28. then dump cat.eps to your printer.
  29.  
  30.             --or--
  31.  
  32. 1.     giftoppm cat.gif | ppmtopgm | pgmtopbm | pbmtoepson >cat.eps
  33. then dump cat.eps to your printer.
  34.  
  35.     These programs are memory hogs, and can generate huge files, 
  36. so 4 meg is best, also a very fast hardisk is recommended. I use a Syquest 
  37. with no problem. By the way the fcontenst of teh archives are 
  38.  
  39. 1. pbm-bin.zoo     - binaries of the Portable Bitmap   part of the PBM+package
  40. 2. pgm-bin.zoo  - binaries of the Portable Greymap  part of the PBM+package
  41. 3. pnm-bin.zoo  - binaries of the Portable Anymap   part of the PBM+package
  42. 4. ppm-bin.zoo  - binaries of the Portable Pixelmap part of the PBM+package
  43. 5. pbm-man.zoo  - man pages for all of the above.
  44. 6. pbm-readme   - this file.
  45.  
  46.                     Scott Kolodzieski
  47.                     
  48.                     scott@sparc1.stevens-tech.edu 
  49.  
  50.  
  51.  
  52.  
  53.